Carbon


DragSendDataProcPtr

Header: Drag.h Carbon status: Supported

typedef OSErr(* DragSendDataProcPtr) (
    FlavorType theType, 
    void *dragSendRefCon, 
    DragItemRef theItemRef, 
    DragRef theDrag
);

You would declare your function like this if you were to name it MyDragSendDataCallback:

OSErr MyDragSendDataCallback (
    FlavorType theType, 
    void *dragSendRefCon, 
    DragItemRef theItemRef, 
    DragRef theDrag
);
theType
dragSendRefCon
theItemRef
theDrag
function result

A result code.

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 5/4/2000)